home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 1: Aki Ross.iso / pc / assets / aki-soundtrack.dcr / 00045_stop.ls < prev    next >
Encoding:
Text File  |  2001-07-20  |  757 b   |  48 lines

  1. global whichTrack, isPlaying
  2.  
  3. on mouseDown
  4.   puppetSound(2, "Clicker")
  5.   puppetSound(1, 0)
  6.   isPlaying = 0
  7.   set the blend of sprite 30 to 30
  8.   set the blend of sprite 29 to 0
  9.   i = 40
  10.   repeat while i <= 50
  11.     sprite(i).visible = 0
  12.     i = 1 + i
  13.   end repeat
  14.   i = 52
  15.   repeat while i <= 62
  16.     sprite(i).visible = 0
  17.     i = 1 + i
  18.   end repeat
  19.   i = 64
  20.   repeat while i <= 74
  21.     sprite(i).visible = 0
  22.     i = 1 + i
  23.   end repeat
  24.   i = 76
  25.   repeat while i <= 86
  26.     sprite(i).visible = 0
  27.     i = 1 + i
  28.   end repeat
  29.   i = 88
  30.   repeat while i <= 98
  31.     sprite(i).visible = 0
  32.     i = 1 + i
  33.   end repeat
  34.   i = 100
  35.   repeat while i <= 110
  36.     sprite(i).visible = 0
  37.     i = 1 + i
  38.   end repeat
  39. end
  40.  
  41. on mouseEnter
  42.   cursor(280)
  43. end
  44.  
  45. on mouseLeave
  46.   cursor(-1)
  47. end
  48.